html, body {
  position: relative;
  height: 100%;
	width: 100%;
}
.overflowhidden{
	overflow: hidden;
}
*{
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}
[v-cloak]{
	display: none;
}
body{
	font: 14px/1.5 "黑体",sans-serif;
	overflow-x: hidden;
}
i,em{
	font-style: normal;
}
a{
	text-decoration: none;
	color: #333;
	transition: all .5s;
}
a:hover{
	color: #e94709;
	text-decoration: none;
}
a:active,a:visited,a:focus{
	text-decoration: none !important;
}
dl{
	margin: 0;
}
ul,li{
	list-style: none;
	margin: 0;
}
.fl{
	float: left;
	display: inline;
}
.fr{
	float: right;
	display: inline;
}
.clearfix:after{
	content: '';
	display: block;
	height: 0;
	clear: both;
}
.clearfix{
	zoom: 1;
}
img{
	vertical-align: middle;
	max-width: 100%;
}
.w1600{
	max-width: 1630px;
	margin: 0 auto;
	padding: 0 15px;
}
.flex{
	display: flex;
}


/**
* 头部
*/
header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	z-index: 10;
	transition: all .5s;
}
header.scroll{
	transform: translateY(-100%);
	background-color: rgba(0,0,0,.2);
}
header .content-main{
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header .logo a{
	display: inline-block;
	width: 150px;
	height: 41px;
	background: url(../images/logo.png) no-repeat;
}
header .menu{
	flex: 1;
	min-width: 0;
	margin-right: 20px;
	position: relative;
}
header .menu::after{
	content: '';
	position: absolute;
	right: 0;
	width: 1px;
	height: 18px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #9f3007;
}
header .menu ul{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header .menu ul li{
	padding: 0 20px;
}
header .menu ul li a{
	color: #FFF;
	line-height: 80px;
	display: inline-block;
	position: relative;
}
header .menu ul li a::after{
	content: '';
	display: block;
	position: absolute;
	bottom: 20px;
	width: 100%;
	height: 2px;
	background: #9f3007;
	-webkit-transform-origin: 100%;
	-ms-transform-origin: 100%;
	transform-origin: 100%;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: background .4s,-webkit-transform .4s;
	transition: background .4s,-webkit-transform .4s;
	-o-transition: transform .4s,background .4s;
	transition: transform .4s,background .4s;
	transition: transform .4s,background .4s,-webkit-transform .4s;
}
header .menu ul li:hover a::after,header .menu ul li.active a::after{
	-webkit-transform-origin: 0;
	-ms-transform-origin: 0;
	transform-origin: 0;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
header .language{
	margin-right: 20px;
	color: #999;
}
header .language a{
	color: #FFF;
}
header.pages-header-index .language a{
	color: #333;
}
header .language a.active{
	color: #999;
}
header .language span{
	padding: 0 5px;
}
header .right-menu{
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: relative;
	transition: all .2s;
}
header .right-menu i{
	width: 3px;
	height: 3px;
	border-radius: 50%;
	transition: all .2s;
	background-color: #e94709;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
header .right-menu i::before{
	content: '';
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #e94709;
	left: -7px;
	transition: all .2s;
}
header .right-menu i::after{
	content: '';
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #e94709;
	right: -7px;
	transition: all .2s;
}
header .right-menu:hover{
	transform: rotate(90deg);
}
header .right-menu:hover i,header .right-menu:hover i::before,header .right-menu:hover i::after{
	width: 2px;
	height: 14px;
	border-radius: 0;
}
header .right-menu:hover i::before{
	left: -4px;
}
header .right-menu:hover i::after{
	right: -4px;
}
header.pages-heade,header.pages-header-index{
	background-color: #FFF;
}
header.pages-header .logo a,header.pages-header-index .logo a{
	background: url(../images/logo-1.png) no-repeat;
	background-size: cover;
}
header.pages-header .menu ul li a,header.pages-header-index .menu ul li a{
	color: #333;
}
header.pages-header .menu ul li a:hover::after,header.pages-header .menu ul li a.active::after,
header.pages-header-index .menu ul li a:hover::after,header.pages-header-index .menu ul li a.active::after{
	background-color: #e94709;
}
header.pages-header .language a{
	color: #999;
}
header.pages-header .language a.active{
	color: #333;
}
.menu-dropdown{
	display: block;
	width: 100%;
	z-index: 1;
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 10px;
	z-index: 9;
	transition: all .5s;
	opacity: 0;
	height: 0;
}
.menu-dropdown ul li{
	font-size: 0;
	height: 70px;
	line-height: 70px;
	padding-left: 10px;
	display: none;
}
.menu-dropdown ul li a{
	display: inline-block;
	font-size: 14px;
	margin-right: 30px;
}
.menu-dropdown.active{
	background-color: #FFF;
	opacity: 1;
	height: 150px;
	padding-top: 80px;
}
.m-header{
	position: fixed;
	top: 0;
	z-index: 10;
	left: 0;
	right: 0;
	height: 50px;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	transition: all .5s;
	display: none;
}
.m-header.scroll{
	transform: translateY(-100%);
}
.m-header-logo a{
	display: block;
	width: 130px;
	height: 35px;
	background: url(../images/logo.png) no-repeat;
	background-size: cover;
}
.m-header-menu-icon span{
	height: 2px;
	width: 25px;
	display: block;
	background: #e94709;
	transition: .5s;
}
.m-header-menu-icon span:first-child{
	margin-bottom: 5px;
}
.m-header-menu-icon span:last-child{
	margin-top: 5px;
}
.pages-m-header .m-header-logo a{
	background: url(../images/logo-1.png) no-repeat;
	background-size: cover;
}
/**
* 头部结束
**/

/**
 * 侧边导航栏
 */
.side-nav{
	position: fixed;
	top: 0;
	right: 0;
	width: 360px;
	height: 100%;
	background-color: #FFF;
	z-index: 51;
	transform: translateX(100%);
	transition: all 1s;
}
.side-nav.active{
	transform: translateX(0);
}
.side-nav .side-close{
	text-align: right;
	padding: 20px 40px;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #FFF;
}
.side-nav .side-close a img{
	width: 32px;
	height: 32px;
	opacity: .5;
	transition: all .5s
}
.side-nav .side-close a:hover img{
	opacity: .8;
	transform: rotate(90deg);
}
.side-nav .side-navs{
	height: calc(100% - 72px);
	overflow-y: auto;
	overflow-x: hidden;
	margin-top: 72px;
}
.side-nav .side-navs::-webkit-scrollbar-track-piece {
	width: 10px;
	border-radius: 30px;
}
.side-nav .side-navs::-webkit-scrollbar {
	width: 5px;
	height: 6px;
	background-color: #fff;
	border-radius: 30px;
}
.side-nav .side-navs::-webkit-scrollbar-thumb {
	height: 20px;
	background-color: #e94709;
	cursor: pointer;
	border-radius: 30px;
}
.side-nav .side-navs ul {
	padding: 0 40px;
	min-height: 100%;
	height: auto;
	padding-bottom: 90px;
	margin-bottom: -70px;
}
.side-nav .side-navs ul li{
	line-height: 60px;
}
.side-nav .side-navs ul li.language a{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	color: #666;
}
.side-nav .side-navs ul li.language a.active{
	color: #e94709;
}
.side-nav .side-navs ul li.language span{
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px;
	color: #999;
}
.side-nav .side-navs ul li a{
	font-size: 20px;
	display: block;
	position: relative;
}
.side-nav .side-navs ul li .select::after{
	content: '';
	position: absolute;
	background: url(../images/icons/arrow-down.png) no-repeat;
	background-size: cover;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	transition: all .5s;
	opacity: .5;
}
.side-nav .side-navs ul li .select.active{
	color: #e94709;
}
.side-nav .side-navs ul li .select.active::after{
	background: url(../images/icons/arrow-down-hover.png) no-repeat;
	background-size: cover;
	transform: rotate(-180deg);
	opacity: 1;
	margin-top: -10px;
}
.side-nav .side-navs ul li a:hover,.side-nav .side-navs ul li .side-dropdown p a:hover{
	color: #e94709;
}
.side-nav .side-navs ul li .side-dropdown{
	display: none;
}
.side-nav .side-navs ul li .side-dropdown p{
	margin: 0;
	line-height: 40px;
}
.side-nav .side-navs ul li .side-dropdown p a{
	font-size: 16px;
	color: #666;
}
.side-nav .side-navs .followUs{
	padding: 0 100px 0 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.side-nav .side-navs .followUs p{
	margin-bottom: 0;
}
.side-nav .side-navs .followUs a{
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.side-nav .side-navs .followUs .QRcode{
	position: absolute;
	width: 180px;
	left: 50%;
	top: -200px;
	transform: translateX(-50%);
	background-color: #FFF;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	text-align: center;
	padding: 20px 0;
	display: none;
}
.side-nav .side-navs .followUs .QRcode::after{
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: url(../images/icons/arrow-triangle.png) no-repeat;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
}
.side-nav .side-navs .followUs .QRcode img{
	margin-bottom: 10px;
}
.side-nav .side-navs .followUs .QRcode p{
	margin: 0;
	font-size: 12px;
	color: #666;
}
.side-nav .side-navs .followUs a:hover .QRcode{
	display: block;
}

.side-nav-mask{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 50;
	display: none;
}

/**
* 底部开始
*/
.footer .footer-info{
	background-color: #EEE;
	padding: 65px 0;
}
.footer .footer-info .w1600{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer .footer-info .footer-info-left .followUs{
	margin-top: 65px;
	cursor: pointer;
}
.footer .footer-info .footer-info-left .followUs a{
	display: inline-block;
	position: relative;
}
.footer .footer-info .footer-info-left .followUs .QRcode{
	position: absolute;
	width: 180px;
	left: 60px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #FFF;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	text-align: center;
	padding: 20px 0;
	display: none;
}
.footer .footer-info .footer-info-left .followUs .QRcode::after{
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	background: url(../images/icons/arrow-triangle.png) no-repeat;
	top: 50%;
	left: -8px;
}
.footer .footer-info .footer-info-left .followUs .QRcode img{
	margin-bottom: 10px;
}
.footer .footer-info .footer-info-left .followUs .QRcode p{
	margin: 0;
	font-size: 12px;
	color: #666;
}
.footer .footer-info .footer-info-left .followUs a:hover .QRcode{
	display: block;
}
.footer .footer-info .footer-info-center{
	width: 480px;
}
.footer .footer-info .footer-info-center h1{
	height: 60px;
	font-weight: normal;
	font-size: 16px;
	border-bottom: solid 1px #bfbfbf;
	margin-bottom: 25px;
	margin-top: 0;
}
.footer .footer-info .footer-info-center .footer-info-center-info{
	display: flex;
	align-items: flex-start;
}
.footer .footer-info .footer-info-center .footer-info-center-info ul{
	flex: 1;
	min-width: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.footer .footer-info .footer-info-center .footer-info-center-info ul li{
	width: 50%;
	line-height: 36px;
}
.footer .footer-info .footer-info-center .footer-info-center-info ul li a{
	color: #999;
}
.footer .footer-info .footer-info-center .footer-info-center-info ul li a:hover{
	color: #e94709;
}
.footer .footer-info .footer-info-right ul{
	display: flex;
}
.footer .footer-info .footer-info-right ul li{
	width: 130px;
}
.footer .footer-info .footer-info-right ul li:last-child{
	width: auto;
}
.footer .footer-info .footer-info-right ul li b{
	display: block;
	height: 60px;
	font-weight: normal;
	font-size: 16px;
	border-bottom: solid 1px #bfbfbf;
	margin-bottom: 25px;
}
.footer .footer-info .footer-info-right ul li p{
	margin: 0;
	line-height: 36px;
}
.footer .footer-info .footer-info-right ul li p a{
	color: #999;
}
.footer .footer-info .footer-info-right ul li p a:hover{
	color: #e94709;
}
.footer .footer-copyright{
	background-color: #333;
	height: 100px;
	color: #666;
	line-height: 100px;
}
.footer .footer-copyright .w1600{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer .footer-copyright span{
	margin-right: 20px;
}
.footer .footer-copyright span a{
	color: #999;
}
/**
* 底部结束
*/


/**
* 首页
*/
.banner{
	overflow: hidden;
}
.banner .canvas-warp{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #000;
}
.banner .scene-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: 0;
	right: 0;
	color: #FFF;
	padding: 1.5em;
}
.banner .scene-nav img{
	width: 40px;
}
.banner .scene-nav--prev{
	left: 0;
}
.banner .swiper-container{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.banner .swiper-button-disabled{
	opacity: .5;
}
.banner .swiper-container .view-more{
	height: 60px;
	line-height: 60px;
	color: #FFF;
	font-size: 13px;
	margin-top: 70px;
	position: absolute;
	bottom: 0;
}
.banner .swiper-container .view-more a{
	color: #FFF;
	font-size: 13px;
}
.banner .swiper-container .view-more a img{
	margin: -2px 0 0 5px;
}
.banner .swiper-container .view-more a:hover{
	color: #e94709;
}
.banner .swiper-container h1{
	font-weight: normal;
	color: #FFF;
	font-size: 50px;
	position: absolute;
	bottom: 80px;
}
.banner .slide-dots{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	height: 60px;
	pointer-events: none;
	text-align: right;
	border-top: solid 1px #e94709;
	line-height: 60px;
}
.banner .slide-dots .slide-dot-lg span{
	pointer-events: auto;
	border-radius: 50%;
	opacity: 1;
	border: solid 1px #FFF;
	padding: 2px;
	background-color: transparent;
	width: auto;
	height: auto;
	border: solid 1px transparent;
	margin: 0 4px;
	transition: all .2s;
}
.banner .slide-dots .slide-dot-lg span::after{
	width: 6px;
	height: 6px;
	content: '';
	display: block;
	background-color: #e94709;
	border-radius: 50%;
	transition: all .2s;
}
.banner .slide-dots .slide-dot-lg span.swiper-pagination-bullet-active{
	border-color: #e94709;
}
/*-------------------*/
.index-about{
	padding: 200px 0;
}
.index-about .index-about-tit{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.index-about .index-about-tit span{
	font-size: 36px;
	color: #e94709;
	font-weight: bold;
}
.index-about .index-about-tit a{
	width: 160px;
	height: 45px;
	line-height: 43px;
	font-size: 14px;
	color: #999;
	text-align: center;
	border: solid 1px #999;
}
.index-about .index-about-tit a::after{
	content: '';
	display: inline-block;
	width: 27px;
	height: 8px;
	background: url(../images/icons/arrow-more.png) no-repeat;
	margin: -2px 0 0 18px;
	transition: all .2s;
}
.index-about .index-about-tit a:hover{
	color: #e94709;
	border-color: #e94709;
}
.index-about .index-about-tit a:hover::after{
	background: url(../images/icons/arrow-more-hover.png) no-repeat;
	margin-left: 10px;
}
.index-about dl{
	display: flex;
	align-items: flex-start;
	margin-top: 60px;
}
.index-about dl dd{
	flex: 1;
	min-width: 0;
	margin-right: 50px;
}
.index-about dl dd .more{
	text-align: center;
	margin-top: 10px;
	display: none;
}
.index-about dl dd .more::after{
	content: '';
	display: inline-block;
	background: url(../images/icons/arrow-down.png) no-repeat;
	width: 20px;
	height: 20px;
	background-size: cover;
	vertical-align: middle;
}
.index-about dl dd .more.active::after{
	transform: rotate(-180deg);
}
.index-about dl dd .index-about-content{
	font-size: 14px;
	line-height: 32px;
	transition: all .5s;
}
.index-about dl dd ul{
	display: flex;
	margin-top: 70px;
	border-bottom: dotted 1px #a0a0a0;
	padding-bottom: 15px;
}
.index-about dl dd ul li{
	flex: 1;
	min-width: 0;
}
.index-about dl dd ul li b{
	color: #e94709;
	font-size: 30px;
}
.index-about dl dd ul li b span{
	font-size: 40px;
}
.index-about dl dd ul li p{
	font-size: 14px;
	color: #666;
}
.index-about dl dt{
	width: 805px;
}
.index-about dl dt .video-js .vjs-big-play-button{
	width: 94px;
	height: 94px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background-color: transparent;
	border: none;
	background-image: url(../images/icons/arrow-play.png);
	transition: all .2s;
}
.index-about dl dt .video-js .vjs-big-play-button:hover{
	background-image: url(../images/icons/arrow-play-hover.png);
}
.index-about dl dt .video-js .vjs-big-play-button span{
	display: none;
}
/*-----------------*/
.index-pro{
	background-color: #e94709;
	padding: 130px 0;
}
.index-pro-tit{
	font-size: 36px;
	color: #FFF;
	font-weight: bold;
}
.index-pro-tabs ul{
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}
.index-pro-tabs ul li{
	margin-right: 10px;
}
.index-pro-tabs ul li a{
	display: inline-block;
	min-width: 100px;
	padding: 0 20px;
	text-align: center;
	line-height: 26px;
	border-radius: 30px;
	border: solid 1px #FFF;
	color: #FFF;
	font-size: 14px;
}
.index-pro-list .index-pro-item{
	padding: 0 4px;
	margin-bottom: 8px;
	overflow: hidden;
}
.index-pro-list .index-pro-item a{
	display: block;
	overflow: hidden;
}
.index-pro-list .index-pro-item a img{
	width: 100%;
	transition: all .5s;
}
.index-pro-list .index-pro-item a:hover img{
	transform: scale(1.1);
}
/*-----------*/
.index-news {
	padding: 130px 0;
}
.index-news .index-news-tit{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.index-news .index-news-tit span{
	font-size: 36px;
	font-weight: bold;
}
.index-news .index-news-tit a{
	width: 160px;
	height: 45px;
	line-height: 43px;
	font-size: 14px;
	color: #999;
	text-align: center;
	border: solid 1px #999;
}
.index-news .index-news-tit a::after{
	content: '';
	display: inline-block;
	width: 27px;
	height: 8px;
	background: url(../images/icons/arrow-more.png) no-repeat;
	margin: -2px 0 0 18px;
	transition: all .2s;
}
.index-news .index-news-tit a:hover{
	color: #e94709;
	border-color: #e94709;
}
.index-news .index-news-tit a:hover::after{
	background: url(../images/icons/arrow-more-hover.png) no-repeat;
	margin-left: 10px;
}
.index-news-tabs ul{
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}
.index-news-tabs ul li{
	margin-right: 10px;
}
.index-news-tabs ul li a{
	display: inline-block;
	min-width: 100px;
	padding: 0 20px;
	text-align: center;
	line-height: 26px;
	border-radius: 30px;
	border: solid 1px #333;
	color: #333;
	font-size: 14px;
}
.index-news-list {
	margin: 0 -5px;
}
.index-news-list .index-news-item{
	padding: 0 5px;
	display: block;
	margin-bottom: 10px;
}
.index-news-list .index-news-item img{
	width: 100%;
}
.index-news-list .index-news-item .index-news-item-info{
	padding: 30px;
	background-color: #f5f5f5;
}
.index-news-list .index-news-item .time{
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 22px;
	padding-bottom: 20px;
	border-bottom: solid 1px #dcdcdc;
	margin-bottom: 20px;
	text-align: center;
}
.index-news-list .index-news-item .time .time-day{
	font-size: 48px;
	color: #999;
	transition: all .2s;
}
.index-news-list .index-news-item .time .time-year-month{
	font-size: 16px;
	color: #999;
	transition: all .2s;
}
.index-news-list .index-news-item .time span.arrow{
	width: 27px;
	height: 8px;
	background: url(../images/icons/arrow-more.png) no-repeat;
	transition: all .2s;
}
.index-news-list .index-news-item .news-title{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #333;
	font-size: 16px;
	font-weight: bold;
	transition: all .2s;
}
.index-news-list .index-news-item .news-des{
	font-size: 14px;
	line-height: 22px;
	color: #666;
	margin-top: 10px;
	height: 44px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.index-news-list .index-news-item:hover .news-title{
	color: #e94709;
}
.index-news-list .index-news-item:hover .time .time-day,.index-news-list .index-news-item:hover .time-year-month{
	color: #e94709;
}
.index-news-list .index-news-item:hover .time span.arrow{
	background: url(../images/icons/arrow-more-hover.png) no-repeat;
}
.index-news-itemTwo-item .index-news-item-info{
	padding: 40.2px 30px !important;
}
.index-news-itemThree-item .index-news-item-info{
	display: flex;
	align-items: center;
	padding: 31.2px 30px !important;
}
.index-news-itemThree-item .index-news-item-info .time{
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.index-news-itemThree-item .index-news-item-info .news-title{
	flex: 1;
	min-width: 0;
	margin: 0 30px;
}
.index-news-itemThree-item .index-news-item-info span.arrow{
	width: 27px;
	height: 8px;
	background: url(../images/icons/arrow-more.png) no-repeat;
	transition: all .2s;
}

/**
* 关于我们 
*/
.about{
	padding-top: 80px;
}
.about .about-banner img{
	width: 100%;
}
.about-item{
	display: flex;
	align-items: flex-start;
	padding: 60px 0;
}
.about-item .about-item-label{
	width: 480px;
	font-size: 30px;
}
.about-item .about-item-content{
	flex: 1;
	min-width: 0;
}
.about-item-1 h1{
	font-size: 20px;
	font-weight: normal;
	height: 45px;
	border-bottom: solid 1px #a0a0a0;
}
.about-item-1 dl{
	display: flex;
	align-items: flex-start;
	margin-top: 45px;
}
.about-item-1 dl dd{
	flex: 1;
	min-width: 0;
	margin-right: 30px;
	font-size: 14px;
	line-height: 36px;
}
.about-item-2 img{
	width: 100%;
}
.about-item-3 h1{
	color: #e94709;
	font-weight: bold;
	padding-bottom: 40px;
	font-size: 20px;
	margin: 0;
	border-bottom: solid 1px #d2d2d2;
}
.about-item-3 h2{
	margin: 0;
	line-height: 84px;
	font-weight: normal;
	font-size: 20px;
	border-bottom: solid 1px #d2d2d2;
}
.about-item-3 ul{
	display: flex;
}
.about-item-3 ul li{
	flex: 1;
	border-right: solid 1px #d2d2d2;
	line-height: 48px;
	font-size: 16px;
	padding-top: 45px;
}
.about-item-3 ul li h3{
	margin: 0;
	font-size: 20px;
	color: #e94709;
	font-weight: bold;
	margin-bottom: 20px;
}
.about-item-3 ul li p{
	margin: 0;
}
.about-item-3 ul li:last-child{
	border: none;
	padding-left: 80px;
}
.about-item-4 ul{
	display: flex;
}
.about-item-4 ul li{
	margin: 0 15px 15px 0;
}
.about-item-4 ul li:nth-child(5n){
	margin-right: 0;
}

/**
 * 业务范围
 */
.business{
	padding-top: 80px;
}
.business-banner img{
	width: 100%;
}
.business-global{
	padding: 90px 0;
}
.business-global-tit{
	text-align: center;
	font-size: 30px;
	color: #e94609;
}
.business-global-des{
	font-size: 16px;
	color: #666;
	line-height: 16px;
	text-align: center;
	margin-top: 40px;
}
.business-global-map{
	text-align: center;
	padding: 100px 0 50px;
}
.business-global-citys-tit{
	height: 55px;
	border-bottom: solid 1px #dcdcdc;
	padding-left: 200px;
	font-size: 16px;
}
.business-global-citys-list{
	padding-left: 200px;
}
.business-global-citys-list .swiper-slide a{
	display: inline-block;
	padding: 25px 0;
	font-size: 16px;
	/*white-space: nowrap;*/
	border-top: solid 2px #FFF;
}
.business-global-citys-list .swiper-slide a.active{
	border-top: solid 2px #e94609;
}
.business-global-city-info{
	line-height: 32px;
}
.business-global-city-info p{
	margin: 0;
	color: #999;
}
.business-sales{
	background: url(../images/pic13.jpg) 50% 50% no-repeat;
	background-size: cover;
	min-height: 800px;
	padding-top: 130px;
}
.business-sales h1,.business-sales h2{
	margin: 0;
	text-align: center;
	color: #FFF;
}
.business-sales h1{
	font-size: 30px;
	font-weight: bold;
}
.business-sales h2{
	font-size: 16px;
	margin-top: 20px;
	color: #ccc;
}
.business-sales-line{
	background: url(../images/business/line.png) 50% 50% no-repeat;
	background-size: cover;
	height: 169px;
	margin-top: 255px;
}
.business-sales-line ul{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 150px;
}
.business-sales-line ul li{
	color: #FFF;
	text-align: center;
	margin-top: -20px;
}
.business-sales-line ul li p{
	margin: 0;
	font-size: 18px;
}
.business-sales-line ul li p span{
	font-size: 60px;
	display: inline-block;
	margin: -10px 0;
	font-weight: bold;
}
.business-sales-line ul li:nth-child(2n) p span{
	color: #e94709;
}
.business-sales-line ul li:nth-child(2){
	margin-top: -100px;
}
.business-sales-line ul li:nth-child(3){
	margin-top: -150px;
}
.business-sales-line ul li:nth-child(4){
	margin-top: -50px;
}

/**
* 新闻动态
*/
.news{
	background-color: #f5f5f5;
	padding-top: 80px;
}
.news-list-tit{
	padding: 50px 0;
	border-bottom: solid 1px #bfbfbf;
}
.news-list-tit .w1600{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.news-list-tit span{
	font-size: 30px;
}
.news-list-tit ul{
	display: flex;
	flex-wrap: wrap;
}
.news-list-tit ul li{
	margin-right: 10px;
}
.news-list-tit ul li a{
	display: inline-block;
	min-width: 100px;
	padding: 0 20px;
	text-align: center;
	line-height: 26px;
	border-radius: 30px;
	border: solid 1px #333;
	color: #333;
	font-size: 14px;
}
.news-list-box .news-list-items{
	margin: 60px -10px 0;
}
.news-list-box .news-list-item{
	margin-bottom: 20px;
}
.news-list-box .news-list-item a{
	display: block;
	padding: 0 10px;
}
.news-list-box .news-list-item a .info{
	background-color: #FFF;
}
.news-list-box .news-list-item a .news-img{
	overflow: hidden;
}
.news-list-box .news-list-item a .news-img img{
	width: 100%;
	transition: all .5s;
}
.news-list-box .news-list-item a .news-title{
	font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 15px 30px 10px;
}
.news-list-box .news-list-item a .news-time{
	padding: 0 30px 20px;
}
.news-list-box .news-list-item a:hover .news-img img{
	transform: scale(1.1);
}
.news-info{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	transition: all 1s;
	width: 100%;
	max-width: 1200px;
	z-index: 51;
	padding: 75px 60px 0;
	transform: translateX(100%);
	overflow-y: auto;
	overflow-x: hidden;
}
.news-info.active{
	transform: translateX(0);
}
.news-info-close{
	position: absolute;
	top: 30px;
	right: 60px;
}
.news-info-close img{
	width: 15px;
	transition: all .5s;
}
.news-info-close a:hover img{
	transform: rotate(90deg);
}
.news-info-title{
	height: 140px;
	border-bottom: solid 1px #b5b5b5;
}
.news-info-title h1{
	font-size: 30px;
	line-height: 48px;
}
.news-info-author{
	font-size: 12px;
}
.news-info-author time{
	margin-right: 20px;
}
.news-info-content{
	padding-right: 10px;
	font-size: 16px;
	line-height: 38px;
	margin: 20px 0;
}
.news-info-content p{
	margin: 0;
}
.news-paging{
	height: 140px;
	border-top: solid 1px #b5b5b5;
	line-height: 90px;
	display: flex;
	justify-content: space-between;
	padding: 0 50px;
	margin: 0 -60px;
}
.news-paging-prev,.news-paging-next{
	position: relative;
}
.news-main-img{
	position: absolute;
	width: 280px;
	background-color: #FFF;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 0 10px rgba(233,70,9,.1);
	top: -165px;
	line-height: normal;
	transform: translateY(-10px);
	opacity: 0;
	transition: all .5s;
}
.news-main-img.active{
	transform: translateY(0);
	opacity: 1;
}
.news-main-img p{
	padding: 5px 0 0;
	margin: 0;
	text-align: center;
	white-space: nowrap
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-paging-next .news-main-img{
	right: 0;
}
.news-info-content::-webkit-scrollbar-track-piece {
	width: 5px;
}
.news-info-content::-webkit-scrollbar {
	width: 5px;
	height: 6px;
	background-color: #fff;
}
.news-info-content::-webkit-scrollbar-thumb {
	height: 50px;
	background-color: #e94609;
	cursor: pointer;
	border-radius: 20px;
}
.news-info-mask{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.9);
	z-index: 50;
	display: none;
}
.load-more,.loading,.no-more{
	text-align: center;
	font-size: 16px;
	color: #666;
	padding: 50px 0;
}

/**
 * 员工天地
 */
.team-subtitle{
	margin-top: 50px;
}
.team-subtitle h1{
	color: #68b072;
	font-size: 40px;
	font-weight: bold;
}
.team-subtitle h2{
	text-transform: uppercase;
	color: rgba(233,71,9,.2);
	font-size: 60px;
	font-weight: bold;
}
.team-association-content{
	margin-top: -350px;
}
.team-association-tit h1{
	margin: 0;
	font-size: 40px;
	color: #d2d2d2;
	margin-bottom: 10px;
	font-weight: bold;
}
.team-association-tit h2{
	margin: 0;
	font-size: 60px;
	color: #d2d2d2;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: bold;
}
.team-association-list dl{
	display: flex;
}
.team-association-list dl dt,.team-association-list dl dd{
	width: 50%;
}
.team-association-list dl dd{
	padding: 40px 50px;
	background-color: #FFF;
}
.team-association-list dl dd h1{
	margin-bottom: 20px;
	font-size: 30px;
	font-weight: bold;
}
.team-association-list dl dd .info{
	font-size: 13px;
	line-height: 26px;
}
.team-association-list dl:nth-child(2n) dd{
	order: -1;
}
.team-association-dots{
	text-align: center;
	padding: 40px 0;
}
.team-association-dots span{
	opacity: 1;
	width: 11px;
	height: 11px;
	background-color: #bfbfbf;
	margin: 0 5px;
	transition: all .5s;
	border-radius: 20px;
}
.team-association-dots span.swiper-pagination-bullet-active{
	background-color: #e94709;
	width: 35px;
}
/**
 * 法律声明
 */
.legal{
	background-color: #FFF;
}
.legal-main{
	display: flex;
	align-items: flex-start;
	padding: 60px 0;
	min-height: 500px;
}
.legale-label{
	width: 480px;
	font-size: 30px;
}
.legale-content{
	flex: 1;
	min-width: 0;
}
.legale-content-tit{
	font-size: 20px;
	height: 45px;
	border-bottom: solid 1px #b5b5b5;
}
.legal-list ul li{
	display: flex;
	align-items: flex-start;
	padding: 30px 0;
	border-bottom: solid 1px #b5b5b5;
}
.legal-list ul li .time{
	width: 88px;
	height: 88px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	line-height: 22px;
}
.legal-list ul li .time span{
	font-size: 40px;
	color: #e94609;
}
.legal-list ul li .time p{
	margin: 10px 0 0;
	font-size: 14px;
}
.legal-list ul li .legal-info{
	flex: 1;
	min-width: 0;
	margin-left: 20px;
}
.legal-list ul li .legal-info h1{
	margin: 0;
	font-weight: bold;
	font-size: 16px;
	line-height: 38px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.legal-list ul li .legal-info p{
	margin: 0;
	line-height: 20px;
	font-size: 12px;
	color: #666;
}

/**
 * 加入我们
 */
.join{
	min-height: 800px;
	padding-top: 80px;
}
.join-main{
	display: flex;
	align-items: flex-start;
	padding: 60px 15px;
}
.join-label{
	width: 490px;
	font-size: 30px;
}
.join-content-list{
	flex: 1;
	min-width: 0;
}
.join-content-list-tit{
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #e94609;
	height: 40px;
	border-bottom: solid 1px #b5b5b5;
}
.join-content-list-tit span:first-child{
	width: 765px;
}
.join-content-list ul li{
	border-bottom: solid 1px #b5b5b5;
}
.position-title{
	font-size: 16px;
	position: relative;
	line-height: 65px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.position-title span:first-child{
	width: 765px;
}
.position-title::after{
	content: '';
	transition: all .5s;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../images/icons/arrow-down.png) no-repeat;
	background-size: cover;
	width: 18px;
	height: 18px;
}
.join-content-list ul li.active .position-title{
	color: #e94609;
}
.join-content-list ul li.active .position-title::after{
	background: url(../images/icons/arrow-down-hover.png) no-repeat;
	background-size: cover;
	transform: rotate(-180deg);
	margin-top: -9px;
}
.position-info{
	display: none;
	padding-bottom: 40px;
	line-height: 38px;
	font-size: 14px;
}
.position-info p{
	margin: 0;
}
.join-content-about{
	margin-top: 60px;
}
.enter{
	position: relative;
}
.enter .enter-info{
	position: absolute;
	left: 50px;
	top: 80px;
}
.enter .enter-info h1{
	font-size: 20px;
	margin-bottom: 50px;
}
.enter .enter-info h1 img{
	margin-right: 10px;
}
.enter .enter-info p a{
	font-size: 24px;
	color: #e94609;
}
.enter .enter-info p a img{
	transition: all .5s;
}
.enter .enter-info p a:hover img{
	margin-left: 10px;
}
.join-content-about-address h1{
	font-size: 20px;
	border-bottom: solid 1px #b5b5b5;
	line-height: 70px;
}
.join-content-about-address p{
	margin: 0;
	border-bottom: solid 1px #b5b5b5;
	line-height: 70px;
	display: flex;
	align-items: center;
	font-size: 16px;
}
.join-content-about-address p span{
	width: 320px;
}
.join-content-about-address-1{
	display: flex;
	align-items: flex-start;
	padding: 30px 0;
}
.join-content-about-address-1 img{
	margin-right: 15px;
}
.join-content-about-address-1 .info{
	flex: 1;
	min-width: 0;
}
.join-content-about-address-1 .info h1{
	font-size: 16px;
	margin: 0 0 10px;
}
.join-content-about-address-1 .info p{
	font-size: 14px;
	color: #999;
}

/**
 * 商务合作
 */
.cooperation{
	padding-top: 80px;
}
.cooperation-item{
	padding: 140px 0;
}
.cooperation-item:first-child{
	padding: 60px 0;
}
.cooperation-item .w1600{
	display: flex;
	align-items: center;
}
.cooperation-item:first-child .w1600{
	align-items: flex-start;
}
.cooperation-item:nth-child(2n){
	background-color: #fafafa;
}
.cooperation-label{
	width: 490px;
}
.cooperation-label h1{
	font-size: 30px;
}
.cooperation-sort-tit{
	font-size: 20px;
	color: #e94709;
	font-weight: bold;
	margin-bottom: 20px;
}
.cooperation-sort-des{
	font-size: 14px;
	line-height: 28px;
	color: #666;
	max-width: 400px;
}
.cooperation-content {
	flex: 1;
	min-width: 0;
}
.cooperation-content h2{
	margin: 0;
	font-size: 20px;
	margin-bottom: 20px;
}
.cooperation-content p{
	margin: 0;
	font-size: 14px;
	line-height: 28px;
}
.cooperation-content ul{
	display: flex;
	flex-wrap: wrap;
}
.cooperation-content ul li{
	width: calc((100% - 12px) / 5);
	margin: 0 3px 3px 0;
}
.cooperation-content ul li:nth-child(5n){
	margin-right: 0;
}
.cooperation-content ul li a{
	display: block;
	overflow: hidden;
}
.cooperation-content ul li a img{
	width: 100%;
	transition: all .5s;
}
.cooperation-content ul li a:hover img{
	transform: scale(1.1);
}

/**
 * 产品列表
 */
.products{
	min-height: 800px;
	background-color: #fafafa;
	padding-top: 80px;
}
.products-tit{
	padding: 50px 0;
	border-bottom: solid 1px #bfbfbf;
	font-size: 30px;
}
.m-products-sort{
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	display: none;
}
.m-products-sort a{
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 32px;
	border-radius: 50%;
	border: solid 1px #333;
}
.m-products-sort a img{
	width: 22px;
	height: 22px;
}
.products-filtrate{
	z-index: 10;
}
.products-filtrate.active{
	background-color: #FFF;
}
.products-filtrate.fixed{
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	border-bottom: solid 1px #EEE;
	background-color: #FFF;
}
.products-filtrate-top {
	padding: 35px 0;
	position: relative;
}
.products-filtrate-top h1{
	font-size: 14px;
	font-weight: bold;
	margin: 0;
	line-height: 40px;
}
.products-filtrate-top h1 a{
	display: flex;
	align-items: center;
}
.products-filtrate-top h1 a::after{
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background: url(../images/icons/arrow-down.png) no-repeat;
	background-size: cover;
	transition: all .5s;
}
.products-filtrate-top h1 a:hover::after{
	background: url(../images/icons/arrow-down-hover.png) no-repeat;
	background-size: cover;
}
.products-filtrate-top h1.active a::after{
	transform: rotate(-180deg);
}
.m-sort-mask{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	z-index: 10;
	top: 0;
	left: 0;
	display: none !important;
}
.pro-search form{
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	border: solid 1px #c9c9c9;
	border-radius: 5px;
	padding-right: 10px;
	margin-left: 10px;
}
.pro-search form input{
	flex: 1;
	min-width: 0;
	padding: 0 10px;
	border: none;
	font-size: 14px;
	background-color: transparent;
}
.pro-search form button{
	background: url(../images/icons/arrow-search.png) no-repeat;
	width: 15px;
	height: 15px;
	border: none;
	cursor: pointer;
}
.products-filtrate-dropdown{
	background-color: #FFF;
	padding: 10px 0 50px;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	display: none;
}
.products-filtrate-dropdown.fixed{
	position: fixed;
	top: 110px;
}
.m-close-filtrate{
	position: absolute;
	right: -40px;
}
.m-close-filtrate img{
	width: 30px;
}
.products-filtrate-dropdown h1{
	font-size: 18px;
	display: none;
}
.products-filtrate-dropdown ul li{
	font-size: 14px;
	line-height: 28px;
}
.products-list-box.fixed{
	padding-top: 110px;
}
.products-list-box-main{
	margin: 0 -10px;
}
.products-list-box a{
	display: block;
	padding: 0 10px;
	margin-bottom: 35px;
}
.products-list-box a .goods-img{
	overflow: hidden;
}
.products-list-box a .goods-img img{
	width: 100%;
	transition: all .5s;
}
.products-list-box a:hover .goods-img img{
	transform: scale(1.1);
}
.products-list-box a h1{
	margin: 0;
	line-height: 32px;
	padding: 10px 0 0;
	font-size: 16px;
}
.products-list-box a p{
	color: #999;
	font-size: 14px;
}
.products-list-box a:hover p{
	color: #e94709;
}

.pro-detaild{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	transition: all 1s;
	width: 100%;
	max-width: 1600px;
	z-index: 51;
	padding: 75px 60px 0;
	transform: translateX(100%);
}
.pro-detaild.active{
	transform: translateX(0);
}
.pro-detaild-close{
	position: absolute;
	top: 30px;
	right: 60px;
}
.pro-detaild-close img{
	width: 25px;
	transition: all .5s;
}
.pro-detaild-close a:hover img{
	transform: rotate(90deg);
}
.pro-detaild-info{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 260px;
	padding: 120px 50px 0;
}
.pro-detaild-info p {
	margin: 0;
	font-size: 14px;
}
.pro-detaild-info h1{
	margin: 0;
	font-size: 30px;
	margin-top: 10px;
}
.pro-detaild-pics{
	position: absolute;
	top: 75px;
	bottom: 260px;
	right: 50px;
	left: 0;
}
.pro-detaild-pics-big,.pro-detaild-pics-big .swiper-container{
	height: 100%;
}
.pro-detaild-pics .swiper-slide{
	height: 100%;
	text-align: center;
}
.pro-detaild-pics .swiper-slide img{
	max-height: 100%;
	max-width: 100%;
}
.pro-detaild-pics-small{
	position: absolute;
	left: 50px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.pro-detaild-pics-small span{
	width: 60px;
	height: 60px;
	opacity: 1;
	display: block;
	margin: 5px 0;
	border: solid 1px #FFF;
	border-radius: 0;
}
.pro-detaild-pics-small .swiper-pagination-bullet-active{
	border-color: #e94709;
}
.pro-detaild-pics-small span img{
	width: 58px;
	height: 58px;
}
.pro-detaild-mask{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.9);
	z-index: 50;
	display: none;
}
.m-search{ display: none;}